home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / www / sqlitemanager / index.php < prev    next >
PHP Script  |  2004-09-24  |  901b  |  29 lines

  1. <?php
  2. /**
  3. * Web based SQLite management
  4. * @package SQLiteManager
  5. * @author FrΘdΘric HENNINOT
  6. * @version $Id: index.php,v 1.11 2004/09/05 17:50:40 freddy78 Exp $ $Revision: 1.11 $
  7. */
  8. session_start();
  9. include_once "./include/defined.inc.php";
  10. include_once INCLUDE_LIB.'config.inc.php';
  11. sqlite_close($db);
  12. ?>
  13. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
  14. <html>
  15. <head>
  16.     <meta http-equiv="Pragma" content="no-cache">
  17.     <meta http-equiv="expires" content="0">
  18.     <title>SQLiteManager</title>
  19.     <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" >
  20. </head>
  21. <frameset cols="<?php echo $leftFrameWidth ?>,*">
  22. <frame src="left.php?<?php echo arrayToGet($_GET) ?>" name=left scrolling=auto>
  23. <frame src="main.php?<?php echo arrayToGet($_GET) ?>" name=main scrolling=auto>
  24. </frameset>
  25. <noframes>
  26. <script>if(!document.frames) window.location='main.php?noframe';</script>
  27. </noframes>
  28. </html>
  29.